home *** CD-ROM | disk | FTP | other *** search
/ BMUG Newsletter 1997 Spring / BMUG Spring 1997 Newsletter (1997).bin / Newletter PD Collection / PowerPC / Strip 1.0a1 ƒ / Source Kit ƒ / Strip68K / strip.h < prev    next >
Text File  |  1994-06-20  |  1KB  |  44 lines

  1. /*    strip.h
  2.  *
  3.  *        My resources and entry points
  4.  */
  5.  
  6. #ifndef __STRIP_H__
  7. #define __STRIP_H__
  8.  
  9. /************************************************************************/
  10. /*                                                                        */
  11. /*    Menus                                                                */
  12. /*                                                                        */
  13. /************************************************************************/
  14.  
  15. #define    MApple            128
  16. #define    MFile            129
  17. #define    MEdit            130
  18.  
  19. #define MAppleAboutMe    1
  20.  
  21. #define    MFileStrip        1
  22. #define MFileQuit        3
  23.  
  24. /************************************************************************/
  25. /*                                                                        */
  26. /*    Dialogs and Alerts                                                    */
  27. /*                                                                        */
  28. /************************************************************************/
  29.  
  30. #define ColorAboutMe    128
  31. #define BWAboutMe        129
  32.  
  33. /************************************************************************/
  34. /*                                                                        */
  35. /*    Externals                                                            */
  36. /*                                                                        */
  37. /************************************************************************/
  38.  
  39. extern void StripFile(FSSpec *);            // External strip routine
  40. extern int  FHasFSSpec;                        // Has File strip specifier?
  41.  
  42. #endif // __STRIP_H__
  43.  
  44.